home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / vpix19m.zip / VIEWPIX.BBS < prev    next >
File List  |  1992-04-27  |  10KB  |  241 lines

  1.  
  2.            { ▒██  ▒██ ▒██ ▒███████ ▒██  ▒██ ▒███████ ▒██ ▒██  ▒██
  3.             ▒██  ▒██ ▒██ ▒██      ▒██  ▒██ ▒██  ▒██ ▒██ ▒██  ▒██
  4.             ▒██  ▒██ ▒██ ▒██████  ▒██  ▒██ ▒███████ ▒██   ▒███
  5.             ▒██  ▒██ ▒██ ▒██      ▒██▒█▒██ ▒██      ▒██ ▒██  ▒██
  6.              ▒█████  ▒██ ▒███████ ▒███████ ▒██      ▒██ ▒██  ▒██~
  7.                                                                  ~
  8.                      ` NEW ONLINE GIF FILE VIEWING DOOR~
  9.                   (C) 1991-1992 Frank Capo - No Anchovies
  10.                            ALL RIGHTS RESERVED
  11.  
  12.  
  13.                                 { OVERVIEW~
  14.  
  15.        Viewpix is a BBS Door which allows your users to preview .GIF
  16.        graphics files while online. VIEWPIX works in conjunction with
  17.        GIFDesk - a freeware utility written by Jay Wherley, and SHOWGIF,
  18.        a shareware program written by Bill Parquet. You are urged to
  19.        promote and spread the word about GIF Desk and SHOWGIF which are
  20.        excellent programs.
  21.  
  22.  
  23.                               { INSTALLATION~
  24.  
  25.                               DO THIS FIRST!
  26.  
  27.        In order for this Door to run properly, you MUST include a line
  28.        in your AUTOEXEC.BAT file that looks like this:
  29.  
  30.                            `SET GIFDESK=FILE~
  31.  
  32.  
  33. PACKAGE LIST
  34.  
  35.    VIEWPIX.EXE  -> Main Program
  36.    GIFDSK40.ZIP -> View Several Gifs
  37.    SHGIF55C.ZIP -> TSR Gif Viewing Utility
  38.    SAMPLE.LST   -> Sample File
  39.    SAMPLE.DIR   -> Sample File
  40.    SAMPLE.CNF   -> Sample Configuration File
  41.    VIEWPIXG     -> Ansi Screen
  42.    VIEWDOC.EXE  -> Self-Displaying colored Documents
  43.    VIEWPIX.DOC  -> This ASCII Documentation
  44.    FILE_ID.DIZ  -> Description automatically placed on Most PCB Systems
  45.    FILE.DIS     -> BBS Description
  46.    (See Also Appended Last Minute Files, If Any)
  47.  
  48. Place SHGIF55C.ZIP into a separate directory for now and unzip all the
  49. others into a subdirectory on your BBS drive. Multi-node systems must
  50. do the same for each node.
  51.  
  52. {SAMPLE.CNF DESCRIPTION~
  53.  
  54. C:\GAP                #1 -> Drive\Path to DOOR.SYS (or other door file)
  55. No Anchovies PC       #2 -> The name of your BBS
  56. GAP                   #3 -> Type of Software BBS (See types below)
  57. 0000                  #4 -> Serial Number for The Registered Version
  58. C:\VIEWPIX\SAMPLE     #5 -> Fully qualified Drive\Path\Filename
  59. D:                    #6 -> Drive specified as a Work Directory or NONE
  60. 7                     #7 -> Default VIEWPIX Configuration
  61. 456789                #8 -> Configuration Options Allowed
  62. NONE                  #9 -> COM port setup or NONE (See Update Doc)
  63.  
  64. {LINE NUMBER EXPLANATION~
  65.  
  66. Line # 3 above can be specified for the following BBS software programs:
  67.  
  68.                   GAP  - GAP BBS which uses DOOR.SYS
  69.                   SF   - SPITFIRE 3.x which uses SFDOORS.DAT & DOOR.SYS
  70.                   WC3  - WILDCAT! 3.x which uses DOOR.SYS
  71.                   WWIV - WWIV which uses CHAIN.TXT
  72.                   PCB  - PCBOARD -> DOOR.SYS only!
  73.                   RBBS - RBBS which uses DOORINFOn.DEF
  74.  
  75. Line # 5 is critical to VIEWPIX operation! This line must the full
  76. DRIVE\PATH\FILENAME (NO EXTENSION). It is vital to VIEWPIX OPERATION!
  77.  
  78.                          {  SAMPLE.LST~
  79.  
  80. This file contains the Drive\Path specifications for all directories on
  81. your system that contain GIF files. You can have as many specifications as
  82. needed. Only ONE SPECIFICATION PER LINE is allowed. Make sure that all
  83. subdirectories indicated actually exist on your system. Use your favorite
  84. text editor to modify this file.
  85.  
  86. Here is a basic example:
  87.  
  88.                           { SAMPLE.DIR~
  89.  
  90. This file contains the "Header Names" for each directory in SAMPLE.LST.
  91. If you system has several directories with a variety of GIF files, you
  92. can place a descriptive name here, ONE PER LINE, with a preceding number
  93. followed by a space.` NOTE:~ Sample.LST and Sample.DIR MUST have the same
  94. number of lines.
  95.  
  96. Here is a basic example:
  97.  
  98. SAMPLE.LST and SAMPLE.DIR contain directory information which VIEWPIX
  99. uses to find and display the GIF files on your system.
  100.  
  101.              { CREATE A BATCH FILE TO RUN THE PROGRAM~
  102.  
  103. Each BBS program has its own set of rules for creating Door Batch Files.
  104. Refer to your own BBS manual for information on setting up your Doors and
  105. batch files to run them. The following is an example of a batch file for
  106. SPITFIRE 3.x which is placed into the SF.BAT file:
  107.  
  108. :DOOR_V                          -> Door to be executed (A-Z)
  109. @ECHO OFF                        -> Preferred Command
  110. COPY SFDOORS.DAT C:\SF\DOOR_V    -> Copy SFDoors.Dat into the Directory
  111. CD\SF\DOOR_V                     -> Change to the directory
  112. VIEWPIX VIEWPIX.CNF              -> Run VIEWPIX with the VIEWPIX.CNF File.
  113. ERASE SFDOORS.DAT                -> Erase SFDoors.Dat
  114. CD\SF                            -> Change to the main SF Files directory
  115. GOTO LOOP                        -> Return to the BBS
  116.  
  117. If you encounter a problem with the above configuration, try adding the
  118. parameter  WC3  in place of  SF  in the VIEWPIX.CNF file. When you access
  119. the doors locally with ALT-Q you will view the door in monochrome mode. If
  120. you access the door using ALT-S it will be in color. You will not be able
  121. to view the GIF file on your screen locally but will know it is working
  122. properly.
  123.  
  124.                           { GAP BBS~
  125.  
  126. We will call this batch file VIEWPIX.BAT as an example:
  127.  
  128. @ECHO OFF
  129. C:\
  130. CD\VIEWPIX
  131. VIEWPIX VIEWPIX.CNF
  132. C:\
  133. CD\GAP
  134.  
  135. The line above that runs VIEWPIX can have any filename as a parameter.
  136. Make sure you place you have the filename. (As in SAMPLE.CNF above) in the
  137. door directory. The extensions .LST and .DIR can be any name you choose as
  138. long as you place the same names in the VIEWPIX.CNF file!
  139. You have done a good job! The VIEWPIX DOOR should run now, if you have set
  140. it up properly.
  141.  
  142. Lines #8 and #9 refer to the type of graphic that GIFDESK will compose.
  143. Examine the following descriptions:
  144.  
  145.            ` #    GRID                      RESOLUTION~
  146.            --------------------------------------------
  147.            1 -> 1 x 1 Grid                    640x480
  148.            2 -> 1 x 1 Grid                    800x600
  149.            3 -> 1 x 1 Grid                   1024x768
  150.            4 -> 2 x 2 Grid                    640x480
  151.            5 -> 2 x 2 Grid                    800x600
  152.            6 -> 2 x 2 Grid                   1024x768
  153.            7 -> 3 x 3 Grid                    640x480
  154.            8 -> 4 x 4 Grid                    800x600
  155.            9 -> 5 x 5 Grid                   1024x768
  156.  
  157. Line number 8 is the DEFAULT setup you wish the door to start with. Users
  158. can modify this to any of the permitted options (1 Thru 9) which you place
  159. on line number 9.
  160.  
  161.                           { DOOR OPERATION~
  162.  
  163. Your users are going to LOVE this Door! How many times have you downloaded
  164. large GIF files only to find that they weren't really what you expected?
  165. VIEWPIX solves that problem! This is what actually happens:
  166.  
  167. 1. Users can display files listings of all your GIFs and, depending on how
  168.    they choose to configure VIEWPIX, download and/or "Preview" a single
  169.    GIF file containing the pictures they have selected.
  170.  
  171. 2. GIFDesk, an amazing software program, is responsible for making up this
  172.    "Preview" possible! VIEWPIX passes filenames to GIFDesk and GIFDesk
  173.    works its magic. VIEWPIX then takes the "Preview" file, assigns it a
  174.    unique DOS filename and sends it to the user.
  175.  
  176. 3. If the users has SHOWGIF loaded as a TSR, they will see the graphic as
  177.    it is downloaded into their system! If not, they can look at the
  178.    "Preview"  file afterwards with their favorite GIF viewer.
  179.  
  180.                            { DSZ.COM/DSZ.EXE~
  181.  
  182. Before I forget - VIEWPIX also needs DSZ to perform file transfers. DSZ
  183. from Omen Technologies is a fine protocol tool package that all Sysops
  184. should use. Get it and REGISTER IT! Make sure it is placed in your PATH
  185. for VIEWPIX to find it.
  186.  
  187.                          { RUNNING VIEWPIX LOCALLY~
  188.  
  189. Log on locally, go into VIEWPIX and have it make a preview for you. You
  190. will not be able to view the file online. You will be able to store the
  191. file into any directory you choose for later viewing with your favorite
  192. GIF viewer. OR...  Load up SHOWGIF and give No Anchovies BBS a call!
  193.  
  194.                            { SYSOP INFORMATION~
  195.  
  196. VIEWPIX is written in  QuickBASIC 4.5 using Kenny Gardner's GAPQBDR Door
  197. Library. VIEWPIX has been compiled to "stand alone" and needs NO FOSSIL
  198. driver or Runtime library to execute. As a Sysop, you have certain function
  199. keys available to you while your user(s) are in VIEWPIX.
  200.  
  201.  
  202. [F5]                      -> Shell To DOS ("Exit" brings you back)
  203. [F8]                      -> Twit The User Back To The BBS
  204. [F10]                     -> Chat With User
  205. ESC                       -> Ends Chat
  206. [HOME]                    -> Main User Stats In Sysop Window
  207. [END]                     -> Displays Sysop Function Keys
  208. [PgDn]                    -> Additional User Stats
  209. [Up Arrow]                -> Increases User's Remaining Time
  210. [Dn Arrow]                -> Decreases User's Remaining Time
  211.  
  212.  
  213.                 %       ***** IMPORTANT *****~
  214.  
  215.             DO NOT ALTER FILES "VIEWPIX" AND "VIEWPIXG"!
  216.            THEY HAVE NO FILENAME EXTENSION. ALTERING THESE
  217.               TWO FILES WILL RENDER VIEWPIX INOPERABLE!~
  218.  
  219.                           {  REGISTRATION~
  220.  
  221. VIEWPIX  registration is only` $35.00~ payable by Check or Money Order to:
  222.  
  223.                               No Anchovies PC
  224.                              1205 Lake Avenue
  225.                             Ashtabula, OH 44004
  226.  
  227. The Unregistered demo version will only allow (10) GIF files to display
  228. in only one directory.
  229.  
  230. After registering, you will be given access to the VIEWPIX support forum on
  231.  
  232.                             ` No Anchovies BBS~
  233.                               (216) 466-1152
  234.                               (216) 466-1153
  235.                           (Both HST DUal Standard)
  236.  
  237.    It is here that you will receive a Serial Number to register VIEWPIX.
  238.    Please address any questions, comments, etc., in a comment to the SYSOP
  239.    on No Anchovies BBS.
  240.  
  241.